home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2006 December / PCWDEC06.iso / Software / Trial / Paint Shop Pro XI / Data1.cab / _990043F8ED3E4008B2F86B75139E40D0 < prev    next >
Encoding:
Text File  |  2006-08-04  |  741 b   |  30 lines

  1. from PSPApp import *
  2.  
  3. def ScriptProperties():
  4.     return {
  5.         'Author': u'Corel Corporation',
  6.         'Copyright': u'Copyright (c) 2003-2004 Corel Corporation  All rights reserved.',
  7.         'Description': u'',
  8.         'Host': u'Paint Shop Pro',
  9.         'Host Version': u'8.10'
  10.         }
  11.  
  12. def Preset_Sculpture():
  13.     return {
  14.         'Ambience': -70, 
  15.         'Angle': 315, 
  16.         'Color': (255,0,0), 
  17.         'Depth': 60, 
  18.         'Elevation': 40, 
  19.         'Intensity': 75, 
  20.         'PatternName': u'Corel_08_002', 
  21.         'Shininess': 10, 
  22.         'Size': 100, 
  23.         'Smoothness': 80
  24.         }
  25.  
  26. def Do(Environment):
  27.     # Sculpture
  28.     App.Do( Environment, 'Sculpture',         Preset_Sculpture())
  29.  
  30.